/* 网页跳转器工具中心样式 */
.webhub_tools_center {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  display: none;
}
input[type="url"]{
    background-color: #faf8f8;
    color: #3b2424;
    border: #000000 2.5px solid;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    /*中间对齐*/
    text-align: center;
    transform: translateX(238%);
}
a[id="back"]{
    color: #7a74b6;
    text-decoration: none;
    /*移到中间*/
    text-align: center;
    /*设置字体大小*/
    font-size: 20px;
    /*设置字体粗细*/
    font-weight: bold;
    overflow-y: auto;
    overflow-x: hidden;
    /*设置文本居中*/
    display: flex;
    justify-content: center;
    align-items: center;
}
a[id="back"]:hover{
    color: #fff;
    background-color: #3c3a60;
}

body{
    background-color: #4CAF50;
}

.webhub_tools_center_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.webhub_tools_center_content h2{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.webhub_tools_center_content p{
    font-size: 16px;
    margin-bottom: 20px;
}

.webhub_tools_center_content button{
    width: 100%;
    height: 30px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

h1{
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

h2{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

p{
    font-size: 16px;
    margin-bottom: 20px;
}

button{
    border: 2px;
    text-align: center;
    padding: 5px 10px;
    border-color: #6f1414;
    border-radius: 5px;
    background-color: #fbfcff;
    transform: translateX(844.5%);
    color: #6f1414;
    font-size: 16px;
    cursor: pointer;
}

::before{
    display: block;
    height: 100px;
    margin-top: -100px;
    visibility: hidden;
}

iframe{
    width: 100%;
    height: 100%;
    border: snow;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.webhub_tools_center_content input[type="text"]{
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #ccc;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #ccc;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
    color: #ccc;
}
p{
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    text-decoration: dashed;
}
code{
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    color: #f44336;
    background-color: #f9f9f9;
    padding: 2px 4px;
    border-radius: 4px;
}

em{
    font-style: normal;
    color: #f44336;
}

blockquote{
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #ccc;
    font-size: 16px;
    line-height: 1.5;
}

ul{
    list-style: disc;
    margin-left: 20px;
}

ol{
    list-style: decimal;
    margin-left: 20px;
}

/* 侧边栏样式 */
.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: #e19999;
    z-index: 999998;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    overflow-x: auto;
    outline-color: invert;
    outline-style: none;
    outline-width: 0;
    /* 使侧边栏边框与右侧对齐 */
    transform: translateX(550%);
}

.sidebar h2{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sidebar ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar li{
    margin-bottom: 10px;
}

.sidebar a{
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.sidebar a:hover{
    color: #4CAF50;
}

.sidebar input[type="text"]{
    width: 100%;
    height: 30px;
    margin-bottom: 10px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    outline: none;
}

.sidebar button{
    width: 50%;
    height: 30px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.sidebar input[type="checkbox"]{
    margin-right: 5px;
}
